Billionaires Data Visualization

In [1]:
# This Python 3 environment comes with many helpful analytics libraries installed
# It is defined by the kaggle/python Docker image: https://github.com/kaggle/docker-python
# For example, here's several helpful packages to load

import numpy as np # linear algebra
import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv)

# Input data files are available in the read-only "../input/" directory
# For example, running this (by clicking run or pressing Shift+Enter) will list all files under the input directory

import os
for dirname, _, filenames in os.walk('/kaggle/input'):
    for filename in filenames:
        print(os.path.join(dirname, filename))
import warnings

# Ignore all warnings
warnings.simplefilter("ignore")
# You can write up to 20GB to the current directory (/kaggle/working/) that gets preserved as output when you create a version using "Save & Run All" 
# You can also write temporary files to /kaggle/temp/, but they won't be saved outside of the current session
In [2]:
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
from pandasql import sqldf
import plotly.offline as px1
import plotly.graph_objects as go
px1.init_notebook_mode()
In [3]:
from plotly.offline import init_notebook_mode, iplot
init_notebook_mode(connected=True)
import plotly.express as px

Data Summary¶

In [6]:
print(sqldf('''SELECT age,country FROM d1 WHERE age>50'''))
       age        country
0     74.0         France
1     51.0  United States
2     59.0  United States
3     78.0  United States
4     92.0  United States
...    ...            ...
2246  51.0          China
2247  80.0  United States
2248  60.0          China
2249  71.0          China
2250  66.0    Philippines

[2251 rows x 2 columns]
In [4]:
d1=pd.read_csv(r"D:\Empty\Kaggle\datasets\Billionaires Statistics Dataset.csv")
d1.head(6)
Out[4]:
rank finalWorth category personName age country city source industries countryOfCitizenship ... cpi_change_country gdp_country gross_tertiary_education_enrollment gross_primary_education_enrollment_country life_expectancy_country tax_revenue_country_country total_tax_rate_country population_country latitude_country longitude_country
0 1 211000 Fashion & Retail Bernard Arnault & family 74.0 France Paris LVMH Fashion & Retail France ... 1.1 $2,715,518,274,227 65.6 102.5 82.5 24.2 60.7 67059887.0 46.227638 2.213749
1 2 180000 Automotive Elon Musk 51.0 United States Austin Tesla, SpaceX Automotive United States ... 7.5 $21,427,700,000,000 88.2 101.8 78.5 9.6 36.6 328239523.0 37.090240 -95.712891
2 3 114000 Technology Jeff Bezos 59.0 United States Medina Amazon Technology United States ... 7.5 $21,427,700,000,000 88.2 101.8 78.5 9.6 36.6 328239523.0 37.090240 -95.712891
3 4 107000 Technology Larry Ellison 78.0 United States Lanai Oracle Technology United States ... 7.5 $21,427,700,000,000 88.2 101.8 78.5 9.6 36.6 328239523.0 37.090240 -95.712891
4 5 106000 Finance & Investments Warren Buffett 92.0 United States Omaha Berkshire Hathaway Finance & Investments United States ... 7.5 $21,427,700,000,000 88.2 101.8 78.5 9.6 36.6 328239523.0 37.090240 -95.712891
5 6 104000 Technology Bill Gates 67.0 United States Medina Microsoft Technology United States ... 7.5 $21,427,700,000,000 88.2 101.8 78.5 9.6 36.6 328239523.0 37.090240 -95.712891

6 rows × 35 columns

In [5]:
data=d1.copy()

Data Exploration¶

In [6]:
print(f"The shape of the DataFrame is:{d1.shape}")
print(f"The size of the DataFrame is:{d1.size}")
The shape of the DataFrame is:(2640, 35)
The size of the DataFrame is:92400
In [7]:
d1.columns
Out[7]:
Index(['rank', 'finalWorth', 'category', 'personName', 'age', 'country',
       'city', 'source', 'industries', 'countryOfCitizenship', 'organization',
       'selfMade', 'status', 'gender', 'birthDate', 'lastName', 'firstName',
       'title', 'date', 'state', 'residenceStateRegion', 'birthYear',
       'birthMonth', 'birthDay', 'cpi_country', 'cpi_change_country',
       'gdp_country', 'gross_tertiary_education_enrollment',
       'gross_primary_education_enrollment_country', 'life_expectancy_country',
       'tax_revenue_country_country', 'total_tax_rate_country',
       'population_country', 'latitude_country', 'longitude_country'],
      dtype='object')
  • Numerical-rank,finalworth,age,
  • Categorial-category,country,city,industries,organization,selfmade,status,gender
  • Mixed- personName,source,birthdate
In [8]:
d1.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2640 entries, 0 to 2639
Data columns (total 35 columns):
 #   Column                                      Non-Null Count  Dtype  
---  ------                                      --------------  -----  
 0   rank                                        2640 non-null   int64  
 1   finalWorth                                  2640 non-null   int64  
 2   category                                    2640 non-null   object 
 3   personName                                  2640 non-null   object 
 4   age                                         2575 non-null   float64
 5   country                                     2602 non-null   object 
 6   city                                        2568 non-null   object 
 7   source                                      2640 non-null   object 
 8   industries                                  2640 non-null   object 
 9   countryOfCitizenship                        2640 non-null   object 
 10  organization                                325 non-null    object 
 11  selfMade                                    2640 non-null   bool   
 12  status                                      2640 non-null   object 
 13  gender                                      2640 non-null   object 
 14  birthDate                                   2564 non-null   object 
 15  lastName                                    2640 non-null   object 
 16  firstName                                   2637 non-null   object 
 17  title                                       339 non-null    object 
 18  date                                        2640 non-null   object 
 19  state                                       753 non-null    object 
 20  residenceStateRegion                        747 non-null    object 
 21  birthYear                                   2564 non-null   float64
 22  birthMonth                                  2564 non-null   float64
 23  birthDay                                    2564 non-null   float64
 24  cpi_country                                 2456 non-null   float64
 25  cpi_change_country                          2456 non-null   float64
 26  gdp_country                                 2476 non-null   object 
 27  gross_tertiary_education_enrollment         2458 non-null   float64
 28  gross_primary_education_enrollment_country  2459 non-null   float64
 29  life_expectancy_country                     2458 non-null   float64
 30  tax_revenue_country_country                 2457 non-null   float64
 31  total_tax_rate_country                      2458 non-null   float64
 32  population_country                          2476 non-null   float64
 33  latitude_country                            2476 non-null   float64
 34  longitude_country                           2476 non-null   float64
dtypes: bool(1), float64(14), int64(2), object(18)
memory usage: 704.0+ KB
In [9]:
d1.isnull().sum()
Out[9]:
rank                                             0
finalWorth                                       0
category                                         0
personName                                       0
age                                             65
country                                         38
city                                            72
source                                           0
industries                                       0
countryOfCitizenship                             0
organization                                  2315
selfMade                                         0
status                                           0
gender                                           0
birthDate                                       76
lastName                                         0
firstName                                        3
title                                         2301
date                                             0
state                                         1887
residenceStateRegion                          1893
birthYear                                       76
birthMonth                                      76
birthDay                                        76
cpi_country                                    184
cpi_change_country                             184
gdp_country                                    164
gross_tertiary_education_enrollment            182
gross_primary_education_enrollment_country     181
life_expectancy_country                        182
tax_revenue_country_country                    183
total_tax_rate_country                         182
population_country                             164
latitude_country                               164
longitude_country                              164
dtype: int64

Percentage of null values

In [10]:
missing_df=d1.isnull().sum().to_frame().rename(columns={0:"Missing Values"})
missing_df["Percentage of missing values"]=(round((d1.isnull().sum()*100)/(len(d1)),2).astype(str)+"%")
missing_df
Out[10]:
Missing Values Percentage of missing values
rank 0 0.0%
finalWorth 0 0.0%
category 0 0.0%
personName 0 0.0%
age 65 2.46%
country 38 1.44%
city 72 2.73%
source 0 0.0%
industries 0 0.0%
countryOfCitizenship 0 0.0%
organization 2315 87.69%
selfMade 0 0.0%
status 0 0.0%
gender 0 0.0%
birthDate 76 2.88%
lastName 0 0.0%
firstName 3 0.11%
title 2301 87.16%
date 0 0.0%
state 1887 71.48%
residenceStateRegion 1893 71.7%
birthYear 76 2.88%
birthMonth 76 2.88%
birthDay 76 2.88%
cpi_country 184 6.97%
cpi_change_country 184 6.97%
gdp_country 164 6.21%
gross_tertiary_education_enrollment 182 6.89%
gross_primary_education_enrollment_country 181 6.86%
life_expectancy_country 182 6.89%
tax_revenue_country_country 183 6.93%
total_tax_rate_country 182 6.89%
population_country 164 6.21%
latitude_country 164 6.21%
longitude_country 164 6.21%
In [11]:
d1["country"].unique()
d1["country"].nunique()
Out[11]:
78
In [12]:
d1.describe().transpose()
Out[12]:
count mean std min 25% 50% 75% max
rank 2640.0 1.289159e+03 7.396937e+02 1.000000 6.590000e+02 1.312000e+03 1.905000e+03 2.540000e+03
finalWorth 2640.0 4.623788e+03 9.834241e+03 1000.000000 1.500000e+03 2.300000e+03 4.200000e+03 2.110000e+05
age 2575.0 6.514019e+01 1.325810e+01 18.000000 5.600000e+01 6.500000e+01 7.500000e+01 1.010000e+02
birthYear 2564.0 1.957183e+03 1.328252e+01 1921.000000 1.948000e+03 1.957000e+03 1.966000e+03 2.004000e+03
birthMonth 2564.0 5.740250e+00 3.710085e+00 1.000000 2.000000e+00 6.000000e+00 9.000000e+00 1.200000e+01
birthDay 2564.0 1.209984e+01 9.918876e+00 1.000000 1.000000e+00 1.100000e+01 2.100000e+01 3.100000e+01
cpi_country 2456.0 1.277552e+02 2.645295e+01 99.550000 1.172400e+02 1.172400e+02 1.250800e+02 2.885700e+02
cpi_change_country 2456.0 4.364169e+00 3.623763e+00 -1.900000 1.700000e+00 2.900000e+00 7.500000e+00 5.350000e+01
gross_tertiary_education_enrollment 2458.0 6.722567e+01 2.134343e+01 4.000000 5.060000e+01 6.560000e+01 8.820000e+01 1.366000e+02
gross_primary_education_enrollment_country 2459.0 1.028585e+02 4.710977e+00 84.700000 1.002000e+02 1.018000e+02 1.026000e+02 1.421000e+02
life_expectancy_country 2458.0 7.812282e+01 3.730099e+00 54.300000 7.700000e+01 7.850000e+01 8.090000e+01 8.420000e+01
tax_revenue_country_country 2457.0 1.254624e+01 5.368625e+00 0.100000 9.600000e+00 9.600000e+00 1.280000e+01 3.720000e+01
total_tax_rate_country 2458.0 4.396334e+01 1.214530e+01 9.900000 3.660000e+01 4.120000e+01 5.910000e+01 1.063000e+02
population_country 2476.0 5.102053e+08 5.542447e+08 38019.000000 6.683440e+07 3.282395e+08 1.366418e+09 1.397715e+09
latitude_country 2476.0 3.490359e+01 1.700350e+01 -40.900557 3.586166e+01 3.709024e+01 4.046367e+01 6.192411e+01
longitude_country 2476.0 1.258316e+01 8.676299e+01 -106.346771 -9.571289e+01 1.045153e+01 1.041954e+02 1.748860e+02
In [13]:
d1["country"].duplicated().sum()
Out[13]:
2561

Data Accessing¶

  • Numerical-rank,finalworth,age,
  • Categorial-category,country,city,industries,organization,selfmade,status,gender
  • Mixed- personName,source,birthdate

Defining the Problems¶

  1. Wealth Distribution:

    • What is the distribution of wealth among different categories?
    • Are there certain industries that dominate the top ranks in terms of wealth?
  2. Geographical Analysis:

    • Which countries have the highest representation among the wealthiest individuals?
    • Is there a correlation between the country of citizenship and the individual's current residence?
  3. Age and Wealth:

    • How does the age of billionaires correlate with their wealth?
    • Are there notable differences in the wealth distribution among different age groups?
  4. Industry Insights:

    • Which industries have the highest concentration of billionaires?
    • Are there specific industries that consistently appear among the top ranks?
  5. Source of Wealth:

    • What are the primary sources of wealth for the billionaires in the dataset?
    • Is there a relationship between the source of wealth and the total worth of an individual?
  6. Country-specific Analysis:

    • Can we identify any economic indicators (e.g., GDP, tax rates) that correlate with the number or wealth of billionaires in a country?
    • How does life expectancy in a country correlate with the wealth of its billionaires?
  7. Population and Wealth:

    • Is there a correlation between the population of a country and the number of billionaires it has?
    • How does the wealth of individuals compare across countries with different population sizes?
  8. Spatial Analysis:

    • Can we visualize the geographical distribution of billionaires on a world map?
    • Are there clusters or patterns in the distribution of billionaires based on latitude and longitude?
  9. Gender Representation:

    • What is the gender distribution among the billionaires in the dataset?
    • Are there notable differences in wealth between male and female billionaires?
  10. Educational Insights:

    • Is there a correlation between the level of education (e.g., tertiary education enrollment) in a country and the wealth of its billionaires?
In [14]:
d1.columns
Out[14]:
Index(['rank', 'finalWorth', 'category', 'personName', 'age', 'country',
       'city', 'source', 'industries', 'countryOfCitizenship', 'organization',
       'selfMade', 'status', 'gender', 'birthDate', 'lastName', 'firstName',
       'title', 'date', 'state', 'residenceStateRegion', 'birthYear',
       'birthMonth', 'birthDay', 'cpi_country', 'cpi_change_country',
       'gdp_country', 'gross_tertiary_education_enrollment',
       'gross_primary_education_enrollment_country', 'life_expectancy_country',
       'tax_revenue_country_country', 'total_tax_rate_country',
       'population_country', 'latitude_country', 'longitude_country'],
      dtype='object')
  1. Wealth Distribution:
    • What is the distribution of wealth among different categories?
    • Are there certain industries that dominate the top ranks in terms of wealth?

Conclusion:¶

Top Industries Ranking in Wealth¶

  1. Automotive.
  2. Technology
  3. Telecom
  4. Logistics
  5. Metals and Mining

Insights:¶

  • These industries dominate the top ranks in wealth, emphasizing their economic significance and success.
  • The financial achievements within each sector contribute to the overall diversity of wealth distribution.
In [15]:
sorted_df=d1.sort_values(by='finalWorth', ascending=False)
sns.barplot(data=sorted_df,x="finalWorth",y="category",palette='viridis',errorbar=None)
plt.title("Wealth distribution based on industries or categories")
Out[15]:
Text(0.5, 1.0, 'Wealth distribution based on industries or categories')
No description has been provided for this image

2. Industry Insights:¶

  • Which industries have the highest concentration of billionaires?
  • Which industries have the highest representation among the individuals in the dataset?

Conclusion:¶

  • Food and beverages,Finance and investments, manufacturing, technology, fashion and retail,energy, healthcare have the highest concentration of billionaires.
  • Finance and investments, manufacturing, technology, fashion and retail are the sectors which contains most male billionaires.
  • Whereas the female billionaires are mainly seen in fashion and retail, food and beverages, and manufacturing industries.
  • Based on the analysis, it can be concluded that the majority of billionaires fall within the age bracket of 50 to 70.
In [16]:
sns.displot(data=d1,x="industries",hue="gender",palette="viridis",element="step")
plt.xticks(rotation="vertical")
plt.title("Industries with highest representation")
Out[16]:
Text(0.5, 1.0, 'Industries with highest representation')
No description has been provided for this image
In [17]:
d1["age"].fillna(d1["age"].mode()[0],inplace=True)
In [18]:
data["age"].fillna(data["age"].mean(),inplace=True)
In [19]:
px.histogram(d1,x="age")
In [20]:
print("The skewness of age column is:",data["age"].skew())
sns.displot(data=data,x="age",kind="hist")
The skewness of age column is: -0.07903682421854166
Out[20]:
<seaborn.axisgrid.FacetGrid at 0x1cb87188150>
No description has been provided for this image

3. Geographical Analysis:¶

  • Which countries have the highest representation among the wealthiest individuals?
  • Is there a correlation between the country of citizenship and the individual's current residence?

Conclusion:¶

  • The top five countries with most billionaires are UNited States, China, India, Germany, and United Kingdom.
  • The high Cramér's V value suggests that there is a substantial relationship between the country of residence and the country of citizenship in the dataset.
In [21]:
d1["country"].value_counts().head(5).to_frame()
Out[21]:
count
country
United States 754
China 523
India 157
Germany 102
United Kingdom 82
In [22]:
d1["country"].value_counts()
Out[22]:
country
United States           754
China                   523
India                   157
Germany                 102
United Kingdom           82
                       ... 
Portugal                  1
Georgia                   1
Eswatini (Swaziland)      1
Uzbekistan                1
Armenia                   1
Name: count, Length: 78, dtype: int64
In [23]:
d1["countryOfCitizenship"].value_counts()
Out[23]:
countryOfCitizenship
United States           735
China                   491
India                   169
Germany                 126
Russia                  104
                       ... 
Belize                    1
Eswatini (Swaziland)      1
Venezuela                 1
Algeria                   1
Panama                    1
Name: count, Length: 77, dtype: int64
In [24]:
from scipy.stats import chi2_contingency

contingency_table = pd.crosstab(d1["country"], d1["countryOfCitizenship"])
chi2, p, _, _ = chi2_contingency(contingency_table)
print(f"Chi-square value: {chi2}, p-value: {p}")
Chi-square value: 132750.7197374479, p-value: 0.0
In [25]:
def cramers_v(confusion_matrix):
    chi2 = chi2_contingency(confusion_matrix)[0]
    n = confusion_matrix.sum().sum()
    phi2 = chi2 / n
    r, k = confusion_matrix.shape
    phi2corr = max(0, phi2 - ((k-1)*(r-1))/(n-1))
    rcorr = r - ((r-1)**2)/(n-1)
    kcorr = k - ((k-1)**2)/(n-1)
    return np.sqrt(phi2corr / min((kcorr-1), (rcorr-1)))

# Calculate Cramér's V
association_strength = cramers_v(contingency_table)
print(f"Cramér's V: {association_strength}")
Cramér's V: 0.8185133547927517

4.Age and Wealth:¶

  • How does the age of billionaires correlate with their wealth?
  • Are there notable differences in the wealth distribution among different age groups?

Conclusion:¶

  • A correlation coefficient of 0.069 is close to zero, suggesting a weak positive correlation. This means that as one variable (age) increases, the other variable (final worth) tends to increase slightly, but the relationship is not strong.
  • Yes, there is a notable difference in the wealth distribution i.e., the people of age less than 50 have net worth less when compared to that of people of age greater than 50.
In [26]:
d1.age.fillna(d1.age.mode()[0],inplace=True)
d1.age.isnull().sum()
Out[26]:
0
In [27]:
from scipy.stats import pearsonr
corr, _ = pearsonr(d1.age,d1.finalWorth)
print('Pearsons correlation: %.3f' % corr)
Pearsons correlation: 0.069
In [30]:
px.bar(d1,x="age",y="finalWorth",title='bar chart of age vs finalworth')
  1. Country-specific Analysis:
    • Can we identify any economic indicators (e.g., GDP, tax rates) that correlate with the number or wealth of billionaires in a country?
    • How does life expectancy in a country correlate with the wealth of its billionaires?
    • PyGwalker
  1. Spatial Analysis:
    • Can we visualize the geographical distribution of billionaires on a world map?
    • Are there clusters or patterns in the distribution of billionaires based on latitude and longitude?
In [ ]:
 
In [ ]:
 
In [ ]:
 
In [ ]:
 
In [ ]:
 
In [ ]:
 
In [29]:
!jupyter nbconvert --to html  billionaires-data-visualization.ipynb
[NbConvertApp] Converting notebook billionaires-data-visualization.ipynb to html
C:\Users\Naveen\AppData\Local\Programs\Python\Python311\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.
  validate(nb)
[NbConvertApp] WARNING | Alternative text is missing on 3 image(s).
[NbConvertApp] Writing 4151277 bytes to billionaires-data-visualization.html
In [45]:
import json
import plotly.io as pio
pio.renderers.default = 'plotly_mimetype+notebook+colab'
pio.renderers.default = 'chrome'
In [32]:
d1.columns
Out[32]:
Index(['rank', 'finalWorth', 'category', 'personName', 'age', 'country',
       'city', 'source', 'industries', 'countryOfCitizenship', 'organization',
       'selfMade', 'status', 'gender', 'birthDate', 'lastName', 'firstName',
       'title', 'date', 'state', 'residenceStateRegion', 'birthYear',
       'birthMonth', 'birthDay', 'cpi_country', 'cpi_change_country',
       'gdp_country', 'gross_tertiary_education_enrollment',
       'gross_primary_education_enrollment_country', 'life_expectancy_country',
       'tax_revenue_country_country', 'total_tax_rate_country',
       'population_country', 'latitude_country', 'longitude_country'],
      dtype='object')
In [52]:
world=json.load(open('D:\Empty\Kaggle\datasets\countries.geojson','r'))
world['features'][1]
Out[52]:
{'type': 'Feature',
 'properties': {'ADMIN': 'Afghanistan', 'ISO_A3': 'AFG'},
 'geometry': {'type': 'Polygon',
  'coordinates': [[[71.04980228700009, 38.40866445000009],
    [71.05714034000005, 38.40902618400008],
    [71.0649434820001, 38.411816712000046],
    [71.07698409100004, 38.412178447000144],
    [71.08938643400012, 38.409853007],
    [71.11739506000004, 38.39863922100008],
    [71.15594567900013, 38.37621165000007],
    [71.2176990160001, 38.32582712800007],
    [71.3001229250001, 38.29869700100011],
    [71.3343843990001, 38.28066192700001],
    [71.35815555800013, 38.25125803700013],
    [71.36451176000008, 38.206816305000046],
    [71.35908573400013, 38.18410451300008],
    [71.34094730600009, 38.14092885400004],
    [71.33453942900013, 38.11167999300011],
    [71.31603926600013, 38.08328379300008],
    [71.3023966880001, 38.04233022100007],
    [71.27263106300012, 37.997991842],
    [71.26591312700009, 37.97254119900009],
    [71.25578454600003, 37.94988108300004],
    [71.25454431200012, 37.93928741500005],
    [71.25826501500012, 37.92647165900007],
    [71.26353601100004, 37.9243529260001],
    [71.27118412300013, 37.9261874390001],
    [71.28182946800013, 37.92499888100008],
    [71.31975996900013, 37.900581767000034],
    [71.34115401300005, 37.89329539000008],
    [71.36099776200012, 37.90202870700003],
    [71.37918786600005, 37.91293243400008],
    [71.50119592300013, 37.94621205700014],
    [71.5370593670001, 37.944455058000074],
    [71.56734175700012, 37.92807362900001],
    [71.59772749900003, 37.898359681000045],
    [71.59028609300003, 37.891435038000054],
    [71.59338667800006, 37.87934275300006],
    [71.59504032400014, 37.85753529900006],
    [71.59421350100007, 37.833764140000085],
    [71.59028609300003, 37.815729065000085],
    [71.57467981000008, 37.79800404900007],
    [71.53778283700007, 37.779038798000016],
    [71.52951460800011, 37.76113291500005],
    [71.53116825400008, 37.75175364200001],
    [71.54026330600004, 37.73051462900014],
    [71.54253706900005, 37.71955922500007],
    [71.54088342300008, 37.70971486500008],
    [71.52951460800011, 37.67857981400002],
    [71.52476037600013, 37.64772898400014],
    [71.52207320200012, 37.637626241000106],
    [71.51721561700009, 37.62922882100011],
    [71.5051233320001, 37.615999655000024],
    [71.50150598200008, 37.61034108500007],
    [71.49716516100011, 37.56654530900008],
    [71.51122115100003, 37.48587839800007],
    [71.50150598200008, 37.44577748700007],
    [71.49024052000004, 37.42337575300007],
    [71.4871399330001, 37.4090872190001],
    [71.49468469200013, 37.37069163100006],
    [71.49654504400007, 37.328523662000094],
    [71.49385787000011, 37.30754303],
    [71.48786340400011, 37.2949856570001],
    [71.48703658000005, 37.26705454600011],
    [71.45013960700004, 37.216670024000024],
    [71.45375695800004, 37.19261464500008],
    [71.44683231600004, 37.18359710700014],
    [71.44104455600007, 37.1684300740001],
    [71.43318973800012, 37.12734731100005],
    [71.43112268100009, 37.06698923700014],
    [71.43318973800012, 37.05474192400004],
    [71.43918420400007, 37.04409657800002],
    [71.45644413300005, 37.02254750600008],
    [71.45995813000013, 37.010739441000055],
    [71.45995813000013, 36.969785868000145],
    [71.46305871600009, 36.94808176700013],
    [71.47174035600011, 36.93004669200013],
    [71.52848107900013, 36.856149394000056],
    [71.53850630700009, 36.836098938000106],
    [71.5453275960001, 36.79000356100008],
    [71.55287235600008, 36.76959137000006],
    [71.56393111200009, 36.750677796000105],
    [71.57736698400004, 36.73326283800009],
    [71.6110600180001, 36.704840800000056],
    [71.65302128100006, 36.68701243100011],
    [71.69994348200004, 36.67864084900012],
    [71.74851932800004, 36.67864084900012],
    [71.79761193900009, 36.686082255000144],
    [71.83657596900014, 36.699156392000106],
    [72.12668746000008, 36.87273752900006],
    [72.15283573400006, 36.89570770300011],
    [72.1868388260001, 36.911391500000065],
    [72.19593387900011, 36.918987936000036],
    [72.21040328000004, 36.93660959900012],
    [72.22032515500013, 36.945549622000044],
    [72.25980594900005, 36.96730540000007],
    [72.36098840400012, 37.00027496400011],
    [72.40594689900013, 37.00766469300004],
    [72.47498661300011, 36.997484436000065],
    [72.50867964700006, 37.01107533800007],
    [72.65771447800006, 37.02882619200008],
    [72.66660282400005, 37.038334656000075],
    [72.67270064300004, 37.0576099650001],
    [72.71435184800004, 37.10998402900012],
    [72.7609639900001, 37.18749867800008],
    [72.7907296140001, 37.220261536000095],
    [72.8305204670001, 37.23976938900009],
    [72.87744266800007, 37.246874898000044],
    [72.90224735600009, 37.253799541],
    [72.92426151500007, 37.27483184900012],
    [72.99557499200006, 37.3093000290001],
    [73.06750858600009, 37.31506195100005],
    [73.0877657480001, 37.326069031000145],
    [73.09923791500012, 37.3398666380001],
    [73.11639449000006, 37.36906382300003],
    [73.13210412600006, 37.384385885000086],
    [73.17024133300004, 37.40826039600009],
    [73.1790263260001, 37.41074086600014],
    [73.20062707500006, 37.404177959000066],
    [73.21147912600014, 37.40826039600009],
    [73.26026167900005, 37.45004079200004],
    [73.27607466700005, 37.4594717410001],
    [73.29633182800006, 37.46494944300008],
    [73.32123986800013, 37.46701650000006],
    [73.34501102700011, 37.46448435500005],
    [73.36185754400009, 37.456396994000045],
    [73.3783940030001, 37.4525470990001],
    [73.44061242700008, 37.47993560800006],
    [73.48526086400011, 37.480969137000045],
    [73.60504683500005, 37.44577748700007],
    [73.67449995900012, 37.43104970300007],
    [73.71780481000008, 37.43182485000008],
    [73.75346154800008, 37.42838836700014],
    [73.74705367000013, 37.403118592000084],
    [73.74591678900003, 37.394902039000044],
    [73.74571008300006, 37.35286326200011],
    [73.73909550000008, 37.33834218400008],
    [73.7222489830001, 37.322451681000075],
    [73.70498905400012, 37.31095367400013],
    [73.69041630000004, 37.30521759100009],
    [73.65196903500009, 37.30206532800011],
    [73.63098840300012, 37.29599334800008],
    [73.60990441900009, 37.28139475600011],
    [73.59729536900005, 37.261809387000085],
    [73.60163619000014, 37.2408804320001],
    [73.6176558840001, 37.2331806440001],
    [73.65992720500009, 37.243748475000075],
    [73.68049442500006, 37.24245656300013],
    [73.6880391840001, 37.2369013470001],
    [73.70240523300009, 37.221165874000036],
    [73.70922652200005, 37.217005920000105],
    [73.7199752200001, 37.21754852400005],
    [73.7362016190001, 37.227651266000095],
    [73.74612349500006, 37.23054514600008],
    [73.76865441900003, 37.228891500000145],
    [73.78395064300014, 37.22589426700003],
    [73.79821333900014, 37.22852976500013],
    [73.83624719200009, 37.256745097000106],
    [73.85640100100005, 37.261576843000114],
    [73.89929244000012, 37.265478415000075],
    [73.95561975100003, 37.28676910400006],
    [73.97670373600005, 37.29028310200002],
    [74.05215132600011, 37.312245586000074],
    [74.16325565700004, 37.33007395400003],
    [74.18764693200006, 37.3383938610001],
    [74.20604374200013, 37.35565378900009],
    [74.2076973880001, 37.38991526300009],
    [74.22392378800009, 37.40335113600014],
    [74.25038212100009, 37.40368703200005],
    [74.2794242760001, 37.39751169900006],
    [74.30381555200012, 37.40017303500008],
    [74.31559777900003, 37.42691558800004],
    [74.32086877400013, 37.41389312800001],
    [74.33244429600012, 37.420352681000054],
    [74.3438131100001, 37.42099863700014],
    [74.35363163200003, 37.41590850900005],
    [74.36820438600012, 37.39637481800014],
    [74.37812626200008, 37.393765158000036],
    [74.38939172400006, 37.393403422000034],
    [74.41833052600003, 37.389191793000094],
    [74.43590051300009, 37.39234405500005],
    [74.45481408700005, 37.393635966],
    [74.47662154100004, 37.38609120800007],
    [74.51269169100004, 37.37722869900006],
    [74.52116662600008, 37.375600891],
    [74.52984826700003, 37.375755921000035],
    [74.63144413300012, 37.3810785930001],
    [74.66038293500009, 37.393971863000104],
    [74.78854048700003, 37.33115916000011],
    [74.81685917200014, 37.30692291300005],
    [74.86264449100014, 37.24460113500001],
    [74.89230676300014, 37.23111358700004],
    [74.81313846800009, 37.21542978900007],
    [74.7940181890001, 37.21393117300008],
    [74.78326949100011, 37.21966725700014],
    [74.74399540200011, 37.28839691200011],
    [74.73738081900012, 37.296122538000105],
    [74.7214644770001, 37.297776185000146],
    [74.7093721920001, 37.29082570400007],
    [74.69893355300007, 37.28030955000011],
    [74.67629927600012, 37.263721415000106],
    [74.67092492700004, 37.26134429900006],
    [74.65097782400005, 37.259638977000094],
    [74.64632694500006, 37.254833069000085],
    [74.64301965300007, 37.24837351500014],
    [74.62999719300012, 37.238296611000095],
    [74.62720666500007, 37.23431752500011],
    [74.6232792560001, 37.23080352800005],
    [74.6150110270001, 37.228374736],
    [74.60901656100003, 37.2301834110001],
    [74.59651086500014, 37.240751241000055],
    [74.5899996340001, 37.243360901000074],
    [74.57594364500005, 37.24214650500005],
    [74.53222538200009, 37.23219879200013],
    [74.50008264200005, 37.23163035100009],
    [74.48726688600004, 37.225945943000056],
    [74.47662154100004, 37.21005544100012],
    [74.46762984200012, 37.18992747000004],
    [74.45667443900004, 37.17731842000012],
    [74.44158492000014, 37.17054880800009],
    [74.42029423100007, 37.168068339000115],
    [74.38226037600003, 37.1720474250001],
    [74.36830774000003, 37.167060649000035],
    [74.36613732900014, 37.14775950100008],
    [74.38257043400012, 37.12657216400004],
    [74.41440311700006, 37.10783945700004],
    [74.47662154100004, 37.08313812300014],
    [74.4940881760001, 37.06647247300012],
    [74.50576705000009, 37.04704213500011],
    [74.51920292200003, 37.03024729400008],
    [74.54235396300004, 37.02166900600014],
    [74.54741825400009, 37.015674540000106],
    [74.54927860600003, 37.00893076600008],
    [74.54814172400012, 37.00164439000008],
    [74.54421431500003, 36.99402211500012],
    [74.53739302600007, 36.962241109000075],
    [74.52137333100012, 36.95849456800008],
    [74.50173628700009, 36.97242136700007],
    [74.48364953600009, 36.993970439000094],
    [74.4803422440001, 36.99691599500011],
    [74.47662154100004, 36.99931895000006],
    [74.45698449700012, 37.00438324000004],
    [74.43559045400013, 37.00322052100012],
    [74.39404260300012, 36.99402211500012],
    [74.36810103300007, 36.97676218700013],
    [74.28459191900009, 36.93423248300007],
    [74.23570601500012, 36.90216725700006],
    [74.21172815000011, 36.89513926200007],
    [74.14599572800012, 36.901702169000146],
    [74.12966597500008, 36.898420716000146],
    [74.11529992700008, 36.88953236900005],
    [74.10878869600003, 36.87563140900005],
    [74.10393111200011, 36.84131825800003],
    [74.0943192950001, 36.8312413540001],
    [74.03530480900014, 36.81558339400004],
    [74.00636600700011, 36.815738424000074],
    [73.97670373600005, 36.824833476000066],
    [73.94693811000013, 36.8308796180001],
    [73.86508264200012, 36.87258249900012],
    [73.83407678300006, 36.882866109000105],
    [73.77289188700007, 36.89201283800011],
    [73.7118419910002, 36.894138894000065],
    [73.71133490400007, 36.8941565530001],
    [73.71112830200013, 36.89416374800007],
    [73.70948256500003, 36.894221061000025],
    [73.64008345600007, 36.896637878000064],
    [73.50934208200005, 36.87868031800008],
    [73.47688928200012, 36.882866109000105],
    [73.44588342300011, 36.88648346000011],
    [73.37973759000005, 36.879248759000035],
    [73.33178186100008, 36.88209096300011],
    [73.28186242700014, 36.86798329700008],
    [73.26749637900014, 36.866536357000086],
    [73.25271691900014, 36.86803497300008],
    [73.2234680580001, 36.87433949800001],
    [73.19184208200011, 36.877026673000046],
    [73.0424971920001, 36.86426259400008],
    [73.0262707930001, 36.859456685000055],
    [73.00229292800009, 36.84612416600004],
    [72.99051070200011, 36.8415766410001],
    [72.97676477100003, 36.84209340400014],
    [72.94586226400014, 36.852221985000085],
    [72.92105757600012, 36.84736440000009],
    [72.89687300600013, 36.836977437000144],
    [72.86772749800014, 36.83041453100006],
    [72.77936079900013, 36.826797180000085],
    [72.69585168500004, 36.83671905500009],
    [72.6296024990001, 36.83294667600006],
    [72.56521366400011, 36.82059600800011],
    [72.51674117000005, 36.80059722900006],
    [72.45410933400012, 36.75796417300009],
    [72.43312870300014, 36.75341664600006],
    [72.38734338400008, 36.75579376200008],
    [72.34620894400013, 36.74489003500014],
    [72.3019739180001, 36.742719625000035],
    [72.2136072190001, 36.72644154900013],
    [72.16968225100004, 36.71135203100002],
    [72.15345585200004, 36.70210194900011],
    [72.14963179600011, 36.689337870000145],
    [72.16461796100009, 36.67006256200011],
    [72.17164595600008, 36.65362945600012],
    [72.15417932100013, 36.645464579000105],
    [72.09609501100005, 36.63890167200012],
    [72.07087691200013, 36.632287089000044],
    [72.0590946860001, 36.62711944600005],
    [72.05041304500014, 36.61864451200003],
    [72.05217004400004, 36.61037628200009],
    [72.05630415900004, 36.60190134700008],
    [72.0549605710001, 36.59285797200002],
    [72.03883752500008, 36.58045562700005],
    [71.99780643800005, 36.572445780000066],
    [71.97703251100012, 36.563040670000106],
    [71.96090946500004, 36.549604797000086],
    [71.91347050000013, 36.52759063700009],
    [71.89972456900011, 36.51834055600008],
    [71.88763228300013, 36.50800526900008],
    [71.87471317600011, 36.49906524600004],
    [71.85859012900005, 36.494155986000095],
    [71.79378788200012, 36.49074534100009],
    [71.77322066200014, 36.480048320000066],
    [71.77456425000008, 36.44842234300009],
    [71.7915141200001, 36.42129221600001],
    [71.794408, 36.4075979620001],
    [71.78262577300006, 36.396539205000096],
    [71.76691613800011, 36.3918366500001],
    [71.75099979700008, 36.391113179000115],
    [71.73632369000012, 36.39591908800011],
    [71.7068681230001, 36.42144724500005],
    [71.64930057800007, 36.45276316300007],
    [71.6291467690001, 36.45953277600009],
    [71.61043990000013, 36.457930806000064],
    [71.60072473100007, 36.44930084300012],
    [71.58873579900012, 36.41845001300004],
    [71.58036421700012, 36.40232696500007],
    [71.57230269400003, 36.39168162000007],
    [71.5471879480001, 36.37163116500011],
    [71.54222701000009, 36.35638661800007],
    [71.55266565000011, 36.34098704100009],
    [71.55835005700004, 36.32786122700011],
    [71.5389197180001, 36.31928293900009],
    [71.51463179500007, 36.31520050100008],
    [71.49582157400005, 36.309619446000056],
    [71.47907841000011, 36.30052439400009],
    [71.4027523200001, 36.23138132700009],
    [71.38244348100005, 36.218565573000035],
    [71.31913985200003, 36.20058217400015],
    [71.31397220900004, 36.19401926700007],
    [71.30901127100009, 36.17272857700007],
    [71.30208662900003, 36.16332346700011],
    [71.29268151800005, 36.157897441000046],
    [71.26229577600003, 36.14611521500004],
    [71.22307336400007, 36.12539296500012],
    [71.2176990160001, 36.11805491200002],
    [71.21263472600003, 36.096815898000045],
    [71.20762211100003, 36.08761749300004],
    [71.17537601700008, 36.061159159000056],
    [71.16591923000004, 36.045707906000075],
    [71.16991342200004, 36.03080174600004],
    [71.17093184400011, 36.027001037000076],
    [71.18188724800007, 36.01883616200007],
    [71.21785404400003, 36.00271311400007],
    [71.23191003400007, 35.99397979800011],
    [71.25743819200011, 35.971552226000114],
    [71.28430993600011, 35.962457174000036],
    [71.31252526900005, 35.95739288300007],
    [71.34156742400006, 35.94726430300011],
    [71.35639856000006, 35.93305328400007],
    [71.36068770400004, 35.90029042600014],
    [71.37133304900004, 35.88514923100013],
    [71.41670495600005, 35.85884592700009],
    [71.43101932800005, 35.84370473300007],
    [71.46440230300004, 35.79471547400007],
    [71.47091353400009, 35.779936015000146],
    [71.47205041500013, 35.76996246300004],
    [71.47101688700013, 35.761332500000094],
    [71.47112024000006, 35.75228912400013],
    [71.47556441300009, 35.74102366100007],
    [71.48135217300012, 35.73409902000009],
    [71.49613163300006, 35.724590556000095],
    [71.50274621600005, 35.71906117800012],
    [71.51535526600009, 35.70149119100003],
    [71.51979943800006, 35.6837661750001],
    [71.51401167800009, 35.66557607100009],
    [71.4959249260001, 35.646610820000035],
    [71.48331587700005, 35.626560364000085],
    [71.49272098800003, 35.60955881800007],
    [71.51277144300008, 35.59627797500005],
    [71.56785852100012, 35.574212138000064],
    [71.5841882740001, 35.564186911000036],
    [71.5934900310001, 35.549355774000105],
    [71.59286991400012, 35.53018381700008],
    [71.5860486250001, 35.51209706600008],
    [71.58170780500012, 35.49313181600013],
    [71.58780562400005, 35.470910950000075],
    [71.59342197900014, 35.464193788000046],
    [71.60072473100007, 35.45545969600008],
    [71.61395389800009, 35.44321238200007],
    [71.62242883300007, 35.429621481000055],
    [71.62087854000004, 35.41013946500007],
    [71.6110600180001, 35.395463359000075],
    [71.56227746600013, 35.36058176700001],
    [71.53158166500009, 35.32792226200013],
    [71.52982466700013, 35.300895488000094],
    [71.5478080640001, 35.27562571200011],
    [71.60320520000005, 35.22338084000003],
    [71.63369429600004, 35.203123678000026],
    [71.6379317630001, 35.18968780600008],
    [71.62925012200003, 35.17010243800004],
    [71.6041353760001, 35.13816640200008],
    [71.53499231000012, 35.098582256000014],
    [71.50894738800014, 35.0720205690001],
    [71.50750044800003, 35.02819895400009],
    [71.51297815000004, 35.01812205000007],
    [71.51132450400007, 35.008716939000095],
    [71.50429650900014, 35.0006037390001],
    [71.49344445800011, 34.994195862000055],
    [71.49344445800011, 34.99414418500004],
    [71.49334110500007, 34.99414418500004],
    [71.49334110500007, 34.994040833000014],
    [71.48538293500013, 34.98349884100014],
    [71.47670129500005, 34.96029612300006],
    [71.46956994700014, 34.94970245400006],
    [71.45995813000013, 34.942674459000074],
    [71.44523879700012, 34.93775674800014],
    [71.32492761200012, 34.8975609340001],
    [71.2894775800001, 34.875030009000085],
    [71.27082238800011, 34.84428253200011],
    [71.2556295170001, 34.810227763000086],
    [71.20307458500014, 34.74816436800012],
    [71.18953536000004, 34.73705393500009],
    [71.15093306500006, 34.720310771000044],
    [71.08060144100006, 34.67292348300006],
    [71.0701628010001, 34.66124460900008],
    [71.06876753700004, 34.645948385000054],
    [71.07626062000014, 34.62362416600007],
    [71.07987797100003, 34.602901916000036],
    [71.07657067900004, 34.578510641],
    [71.06582198100011, 34.55846018500006],
    [71.04752852400014, 34.551122132000074],
    [71.00696252500012, 34.556341451000094],
    [70.9858268640001, 34.55618642200005],
    [70.98335594700012, 34.555256107000076],
    [70.96867028900004, 34.54972686800008],
    [70.95699141500006, 34.532001852000064],
    [70.95564782700012, 34.51001353],
    [70.96122888200011, 34.487611796000124],
    [70.97084069800013, 34.468879090000115],
    [70.99151127200014, 34.443066711000114],
    [71.01982995600014, 34.41443796900003],
    [71.05093916900006, 34.38978831000014],
    [71.12204593900009, 34.35681874600007],
    [71.12638675900007, 34.332220764000084],
    [71.09708622300013, 34.262457581000035],
    [71.09687951700005, 34.24434499100002],
    [71.10654301000011, 34.2093858850001],
    [71.1094885660001, 34.189206238000054],
    [71.1080933020001, 34.16522837300002],
    [71.10178877800013, 34.15181833900007],
    [71.07388350400004, 34.125256653000065],
    [71.0627730710001, 34.105309550000044],
    [71.06385827700012, 34.088928121000095],
    [71.0672689210001, 34.07301178000006],
    [71.06261804200005, 34.05425323500006],
    [71.04670170100013, 34.04187672900011],
    [70.99771244300013, 34.03332428000007],
    [70.97714522300004, 34.027407328000066],
    [70.96572473200013, 34.01381642700008],
    [70.95399418200003, 34.00482472700014],
    [70.93973148600008, 34.000923157000074],
    [70.92123132300014, 34.002240906000054],
    [70.89430790300014, 34.009372254000084],
    [70.88433435100012, 34.00704681500014],
    [70.87999353000004, 33.99425689800006],
    [70.86221683700012, 33.96477549200006],
    [70.79131677300006, 33.95356170700012],
    [70.65618290200013, 33.954750265000115],
    [70.52197920700007, 33.938704732000076],
    [70.49149011200006, 33.9396090700001],
    [70.40896285000014, 33.954414368000045],
    [70.3281925870001, 33.95728241000012],
    [70.30989912900003, 33.961674907000116],
    [70.27558597800004, 33.976170146000044],
    [70.21884525600012, 33.98069183400008],
    [70.00283776900011, 34.04378875800012],
    [69.96909305800006, 34.045726623000064],
    [69.91602136300014, 34.038879497000096],
    [69.88925297100013, 34.03120554600011],
    [69.87261316000013, 34.017227071],
    [69.87044274900012, 34.001336568000085],
    [69.8738533940001, 33.9863245650001],
    [69.87199304200004, 33.971519267000076],
    [69.85421634900013, 33.956352234000065],
    [69.84109053600014, 33.94180531900011],
    [69.84718835500013, 33.92694834400007],
    [69.87648889100006, 33.90255706800005],
    [69.8854289140001, 33.88945709300009],
    [69.89876143400005, 33.85150075300007],
    [69.9075464280001, 33.83561025000006],
    [69.93131758600009, 33.80643890400003],
    [69.94010258000009, 33.79147857700008],
    [69.94723392800012, 33.771970724000084],
    [69.9575175380001, 33.752695415000034],
    [69.97265873300012, 33.74484059700009],
    [69.99647814300005, 33.74209099500007],
    [70.01182946800003, 33.74031890900008],
    [70.06557295800013, 33.721017762000116],
    [70.10815433800013, 33.72729644800003],
    [70.11812788900005, 33.716521912000104],
    [70.12655114700004, 33.67696360300005],
    [70.13254561300005, 33.661434835000136],
    [70.13688643400013, 33.65629303000014],
    [70.1459814860001, 33.64988515200011],
    [70.16251794400011, 33.643244731000095],
    [70.17021773300007, 33.63867136600007],
    [70.17409346600004, 33.63210845900008],
    [70.17347334800007, 33.60787221300009],
    [70.15300948100008, 33.544749451000115],
    [70.15135583500006, 33.525861715000104],
    [70.15497318500013, 33.50661224400008],
    [70.16375817900013, 33.48865468300008],
    [70.17760746300007, 33.47341013600004],
    [70.18546228000014, 33.468965963000045],
    [70.21336755400011, 33.461343689000074],
    [70.22044722500004, 33.456021017000126],
    [70.22783695500004, 33.43994964600006],
    [70.23300459800004, 33.432611593000075],
    [70.2857145590001, 33.382873027000045],
    [70.30157922400008, 33.35178965300011],
    [70.29444787600005, 33.31894928000008],
    [70.12479414900014, 33.19903411900009],
    [70.10536381100007, 33.18980987600008],
    [70.08365970900007, 33.191282654000105],
    [70.05978519700011, 33.19805226700004],
    [70.04800297000008, 33.19407318100005],
    [70.0145166420001, 33.14076894200008],
    [70.00686853000008, 33.131803080000026],
    [69.9947245680001, 33.127333069000116],
    [69.96573409000013, 33.12940012600009],
    [69.95581221600014, 33.12769480500012],
    [69.88093306500008, 33.08924753900007],
    [69.83871342000003, 33.08666371700008],
    [69.77184411600012, 33.114775696],
    [69.73298343900007, 33.109297994000116],
    [69.68600956200004, 33.08077260400006],
    [69.66776778200006, 33.077000224000045],
    [69.65877608200003, 33.078421326000125],
    [69.65019779400012, 33.08185780900007],
    [69.64068933100003, 33.08423492500012],
    [69.60833988500013, 33.07906728200001],
    [69.58777266400011, 33.07953237000004],
    [69.5475167240001, 33.07501068200011],
    [69.51418542500005, 33.056691386000125],
    [69.48772709200006, 33.02837270100014],
    [69.47812524800008, 33.01135007800005],
    [69.46850345900003, 32.99429209500008],
    [69.48721032700013, 32.885874939000104],
    [69.4772884520001, 32.85683278500002],
    [69.47144901600012, 32.85223358200008],
    [69.44555912300007, 32.835671285000075],
    [69.42106449400012, 32.806809998000034],
    [69.38716475400014, 32.78533844000009],
    [69.37631270300005, 32.77187672900004],
    [69.37806970300005, 32.75231720000002],
    [69.38323734600004, 32.7444623830001],
    [69.39042036900008, 32.73789947600011],
    [69.39915368700008, 32.73296437600007],
    [69.40773197400011, 32.72994130500004],
    [69.41465661600012, 32.72557464600007],
    [69.41724043800008, 32.718004049000086],
    [69.41910079000013, 32.70045990000003],
    [69.42912601700004, 32.66736114600013],
    [69.42602543100008, 32.65508799200009],
    [69.41393314600009, 32.63547678700007],
    [69.36122318600007, 32.568478293000084],
    [69.34354984600009, 32.556050110000086],
    [69.30210534700012, 32.54377695700006],
    [69.28195153800004, 32.53279571500008],
    [69.25156579600008, 32.50054962100012],
    [69.23285892700011, 32.462670797000044],
    [69.22800134300007, 32.421303813000094],
    [69.23854333500003, 32.37828318300009],
    [69.26443322800009, 32.322369284000104],
    [69.2681022540001, 32.3013369760001],
    [69.26696537200007, 32.279581197000084],
    [69.25998905400007, 32.23681894900005],
    [69.25952396600013, 32.19452179000007],
    [69.2518758550001, 32.15225046900008],
    [69.25104903100004, 32.13064972000012],
    [69.27063440000006, 32.03597849500008],
    [69.30215702300012, 31.959910787000126],
    [69.30479252100014, 31.946940003000094],
    [69.30115729900012, 31.941281701000094],
    [69.29884973100013, 31.93768992200009],
    [69.2509456790001, 31.907045797000052],
    [69.22376387600013, 31.881931051000038],
    [69.11431319200011, 31.73775380400005],
    [69.1000504970001, 31.724007874000023],
    [69.08475427200005, 31.715791321000097],
    [69.07162845800008, 31.69785959900011],
    [69.04010583500013, 31.67310658800008],
    [69.00403568500013, 31.651092428000112],
    [68.97726729300007, 31.641480611000105],
    [68.94099043800009, 31.643651022000086],
    [68.90698734600005, 31.634297588000067],
    [68.84352868600013, 31.606495666000086],
    [68.80384118600011, 31.602568258000133],
    [68.77727950000013, 31.61858795200007],
    [68.7311841230001, 31.675535381000145],
    [68.70544926000008, 31.701270244000057],
    [68.69790450100004, 31.715946350000138],
    [68.69490726700013, 31.75635732100011],
    [68.68829268400003, 31.76860463400004],
    [68.67578698700004, 31.77470245300009],
    [68.61945967600013, 31.783487448000074],
    [68.56106530800008, 31.811806132000072],
    [68.52747562700006, 31.822968242000115],
    [68.50509973100009, 31.822658183000044],
    [68.48148360200014, 31.815681865000045],
    [68.43817875200006, 31.796044821000095],
    [68.41874841300012, 31.783022360000075],
    [68.42221073400003, 31.77315216100007],
    [68.43957401600005, 31.76658925400008],
    [68.4614331460001, 31.76359202100008],
    [68.52127445500014, 31.764780579000103],
    [68.54060144100009, 31.762506816000098],
    [68.5497998460001, 31.753515117000035],
    [68.5368290610001, 31.74100942000004],
    [68.51517663600009, 31.72995066300004],
    [68.49802006100003, 31.725248108000073],
    [68.4609680590001, 31.730467428000082],
    [68.35606490100008, 31.762506816000098],
    [68.31653243000011, 31.765193991000018],
    [68.27694828300008, 31.76359202100008],
    [68.25503747500011, 31.766382548000138],
    [68.24263513200003, 31.776924541000113],
    [68.23229984500006, 31.790153707000087],
    [68.2068233650001, 31.807878723000016],
    [68.18475752800003, 31.818214010000105],
    [68.15912601800005, 31.825913798000016],
    [68.13855879800008, 31.82467356400008],
    [68.12574304200007, 31.811496074000104],
    [68.10450402900011, 31.768759664000072],
    [68.09834042600005, 31.759123609000113],
    [68.09349694800011, 31.75155141200011],
    [68.06047570800007, 31.725558167000145],
    [68.0555664470001, 31.71656646800011],
    [68.05225915500012, 31.695430807000065],
    [68.04657474800007, 31.68840281200005],
    [67.99407149300004, 31.663443095000076],
    [67.97732832900004, 31.651867574000022],
    [67.96606286700012, 31.638224996000105],
    [67.95521081600003, 31.633212382000067],
    [67.91469649300006, 31.631352031000063],
    [67.8843107510001, 31.635641175000018],
    [67.87066817200008, 31.635176087000076],
    [67.8427112230001, 31.62349721300012],
    [67.78116459100005, 31.5641726690001],
    [67.74828016400005, 31.544392093000084],
    [67.72669763200008, 31.53140981100009],
    [67.69631189000012, 31.520816142000115],
    [67.66546106000004, 31.51812896700008],
    [67.60050378400007, 31.530479635000034],
    [67.56898116000013, 31.529859517000062],
    [67.55611372900012, 31.512186178000064],
    [67.56340010600007, 31.49725168900011],
    [67.57807621300009, 31.482110494000096],
    [67.59109867400014, 31.464798889000093],
    [67.59698978700004, 31.425679830000064],
    [67.61145918800014, 31.41079701800004],
    [67.63140629100008, 31.400099996000023],
    [67.65114668800004, 31.3952940880001],
    [67.73429406800011, 31.404750875000076],
    [67.77036421700012, 31.394673971000145],
    [67.77506677200012, 31.352764384000068],
    [67.76473148600007, 31.334057516000087],
    [67.74943526200013, 31.328011373000038],
    [67.7090242920001, 31.329303284000076],
    [67.69279789200004, 31.325220846000065],
    [67.6789486080001, 31.316590882000128],
    [67.66592614800004, 31.30625559500004],
    [67.60215743000003, 31.271115621000064],
    [67.58365726700009, 31.265224508000074],
    [67.53022383600006, 31.25664622000005],
    [67.49332686400004, 31.242951965000117],
    [67.43389896600013, 31.236079],
    [67.3646008710001, 31.210705872000062],
    [67.3462040610001, 31.20776031500006],
    [67.28217696100006, 31.21277292900004],
    [67.23029382300007, 31.210602519000133],
    [67.2137573650001, 31.21225616500007],
    [67.19319014500013, 31.218509013000073],
    [67.15670658300007, 31.23592397100012],
    [67.13675948100007, 31.241091614000112],
    [67.11686405500006, 31.24031646800009],
    [67.07846846500013, 31.23204823800006],
    [67.05821130400005, 31.232358297000133],
    [67.03526696800009, 31.23592397100012],
    [67.02286462400014, 31.239386292000063],
    [67.0152681890001, 31.24465728800007],
    [67.0138729250001, 31.252667135000053],
    [67.01790368600007, 31.258713277000112],
    [67.02343306500006, 31.26486277300006],
    [67.0259652100001, 31.273027649000085],
    [67.02389815300012, 31.295300191000138],
    [67.01681848200008, 31.309149475000112],
    [67.00209069800007, 31.315867411000028],
    [66.94328291800008, 31.314730530000105],
    [66.90592085800006, 31.305532125000127],
    [66.83848311300005, 31.277006734000082],
    [66.80861413600013, 31.254734192000114],
    [66.7853080650001, 31.23178985600009],
    [66.75952152500008, 31.214788310000074],
    [66.72128096500006, 31.210292460000062],
    [66.69699304200009, 31.195823059000105],
    [66.6630933030001, 31.08311676000008],
    [66.64397302200007, 31.060172424000058],
    [66.55002526800007, 30.976973368000046],
    [66.52749434500004, 30.968343405000013],
    [66.39230879700011, 30.944623922000062],
    [66.3753589270001, 30.936717428000122],
    [66.36626387600012, 30.922868144000063],
    [66.26797530100004, 30.6013890590001],
    [66.26492639100007, 30.557825826000055],
    [66.28192793800014, 30.51813832600007],
    [66.30611250800007, 30.491111552000035],
    [66.31376062000004, 30.478295797000072],
    [66.31939335100009, 30.457831930000083],
    [66.32182214400007, 30.437368063000036],
    [66.30301192200005, 30.305283101000043],
    [66.30528568500006, 30.244770000000102],
    [66.30089318800009, 30.225598043000105],
    [66.23634932500005, 30.111599834000117],
    [66.22172489400003, 30.073721009000025],
    [66.2192961020001, 30.05785634400013],
    [66.22523889100012, 30.04442047100008],
    [66.26043054200005, 30.02312978100008],
    [66.30156498200006, 29.98674957300011],
    [66.33236413600014, 29.966079],
    [66.34052901300004, 29.9565705360001],
    [66.3368083090001, 29.95202301000006],
    [66.32843672700005, 29.949542541000085],
    [66.3224422610001, 29.946545309000072],
    [66.30177168800009, 29.91569447900008],
    [66.27521000100006, 29.885153707000086],
    [66.19562829600005, 29.835337627000058],
    [66.1104655360001, 29.813633525000057],
    [66.05238122600014, 29.798854065000057],
    [65.99429691500006, 29.78402293000002],
    [65.93610925300004, 29.76929514600002],
    [65.87823164900004, 29.754489848000105],
    [65.82014733900013, 29.739736226000076],
    [65.76206302900005, 29.724905091000068],
    [65.70403039500007, 29.71015146900004],
    [65.64584273300011, 29.69534617100004],
    [65.58781009900014, 29.680566712000115],
    [65.52972578900005, 29.66573557600009],
    [65.47174483200007, 29.65095611600006],
    [65.41366052300009, 29.636176656000146],
    [65.35578291900009, 29.621423035000134],
    [65.29759525600008, 29.606643576000124],
    [65.23951094500006, 29.591838278000097],
    [65.18142663600008, 29.577110494000095],
    [65.03637089000011, 29.540161845000057],
    [64.98660648600014, 29.541557109000053],
    [64.8203117270001, 29.56788625100009],
    [64.68388594600003, 29.56881642700006],
    [64.49947701700006, 29.570202960000103],
    [64.47769698100007, 29.570366720000067],
    [64.20773929900014, 29.499983419000046],
    [64.17259932500008, 29.484299622000094],
    [64.1497583420001, 29.458461406000055],
    [64.11337813400013, 29.396294658000073],
    [64.08609297700008, 29.38660532600005],
    [63.971991414000115, 29.42957428000011],
    [63.78791996300009, 29.460580140000047],
    [63.56860518400009, 29.49747711200007],
    [63.415953003000084, 29.484971415000075],
    [63.36680871600004, 29.48094065400008],
    [63.31776778200003, 29.476909892000066],
    [63.2686751710001, 29.47287913000008],
    [63.21968591300009, 29.46879669200007],
    [63.170696656000075, 29.464765931000073],
    [63.12160404500014, 29.460786845000086],
    [63.072614787000134, 29.45675608400009],
    [63.02362552900013, 29.45267364500009],
    [62.97453291800008, 29.448642883000105],
    [62.92554366000007, 29.444637960000108],
    [62.87645105000013, 29.440581360000095],
    [62.82746179200012, 29.43660227500004],
    [62.77842085800006, 29.432519837000115],
    [62.72937992400006, 29.4284890750001],
    [62.68039066600005, 29.424458313000116],
    [62.63134973200005, 29.420427551000046],
    [62.602581132000125, 29.41806962800007],
    [62.47750899300013, 29.40781850200011],
    [62.37446618600012, 29.42487172500003],
    [62.27943322800013, 29.451485087000066],
    [62.196285848000116, 29.47492034900003],
    [62.11298344000011, 29.498226421000055],
    [62.02962935400012, 29.52163584400003],
    [61.94653365100004, 29.54504526800008],
    [61.86323124200004, 29.568351339000117],
    [61.7799288330001, 29.59178660100008],
    [61.696626424000044, 29.615196025000046],
    [61.61342736800003, 29.63850209600008],
    [61.53022831200013, 29.66185984300003],
    [61.446925904000125, 29.685320944000097],
    [61.36372684800011, 29.708627015000047],
    [61.28042443900006, 29.73201060000008],
    [61.197225383000045, 29.75534250900003],
    [61.11402632700009, 29.778726094000092],
    [61.03062056400012, 29.802161357000045],
    [60.947421508000104, 29.82551910400008],
    [60.87600467900006, 29.84551788400003],
    [60.844378703000075, 29.858178610000067],
    [60.90215295400009, 29.916883036000115],
    [60.97811731000013, 29.99413930300011],
    [60.9784273680001, 29.99439768500008],
    [61.13304325300004, 30.154284566000115],
    [61.21562219300006, 30.239705709000134],
    [61.272156210000105, 30.298306783000044],
    [61.38036665800013, 30.41028961200007],
    [61.461705363000135, 30.494522196000077],
    [61.461705363000135, 30.494573873000093],
    [61.57622033700005, 30.613894755000103],
    [61.702620891000095, 30.745514628000052],
    [61.785199829000135, 30.831400859000098],
    [61.80225305200014, 30.84705881800005],
    [61.799772583000106, 30.852381491000102],
    [61.7984289960001, 30.853466695000094],
    [61.79987593600009, 30.871501770000094],
    [61.80235640400008, 30.87852976500011],
    [61.80835087000008, 30.881423646000087],
    [61.80452681500009, 30.949739888000067],
    [61.800185995000106, 30.961418762000022],
    [61.81930627500009, 30.993923238000065],
    [61.82643762200013, 31.014955546000067],
    [61.826334269000085, 31.034592591],
    [61.82147668400006, 31.05448801700001],
    [61.80928104600008, 31.087147522000095],
    [61.79181441300011, 31.11892852800011],
    [61.789333944000134, 31.129315491000057],
    [61.78768029800011, 31.158616029000115],
    [61.779205363000074, 31.18109527600012],
    [61.75243697100012, 31.219129130000056],
    [61.74272180200006, 31.239541321000104],
    [61.74230839100005, 31.2594367480001],
    [61.74923303200006, 31.302379863000056],
    [61.74230839100005, 31.320880025000093],
    [61.70654829900013, 31.35984405500008],
    [61.6869112550001, 31.373176575000087],
    [61.66117639100014, 31.381909892000067],
    [61.60625863000013, 31.388741288000062],
    [61.490850871000134, 31.40309722900014],
    [61.29479048700006, 31.4276435350001],
    [61.125148649000096, 31.448887156000097],
    [61.12353479000012, 31.44908925400003],
    [60.95599979700012, 31.470069885000044],
    [60.855024048000075, 31.48273061100008],
    [60.821744425000134, 31.494667868000107],
    [60.80996219900004, 31.58835723900006],
    [60.79497603400006, 31.636674704000086],
    [60.792598918000124, 31.66008412700006],
    [60.8053113200001, 31.733981426000128],
    [60.7914620360001, 31.826533916000074],
    [60.789291626000136, 31.87495473300004],
    [60.796733032000134, 31.936759746000035],
    [60.79497603400006, 31.958463847000132],
    [60.79104862500009, 31.96916086800013],
    [60.786087688000066, 31.97897939000009],
    [60.7840206300001, 31.989263000000108],
    [60.792598918000124, 32.011277161000066],
    [60.786707804000116, 32.016909892000115],
    [60.778336222000064, 32.021044006000125],
    [60.774925578000136, 32.0271935020001],
    [60.782677043000035, 32.04254140200007],
    [60.80882531700013, 32.07117014600004],
    [60.814819783000075, 32.087861633000074],
    [60.828255656000124, 32.167443339000016],
    [60.8303227130001, 32.24888539700004],
    [60.79631962100012, 32.35590728800011],
    [60.75229130100007, 32.4945809940001],
    [60.71167362500012, 32.61031036400004],
    [60.674880005000034, 32.71560109500004],
    [60.6400500900001, 32.8155174770001],
    [60.606150350000064, 32.9123591100001],
    [60.57752160700011, 32.994343770000086],
    [60.56294885300014, 33.058267518000065],
    [60.56150191200004, 33.13730662100002],
    [60.56759973100009, 33.15128509600004],
    [60.61596887300004, 33.20619130500006],
    [60.67033247900008, 33.26771209800006],
    [60.71901167800013, 33.323031719000085],
    [60.75704553300005, 33.366336568000065],
    [60.785880981000105, 33.387782288000096],
    [60.81864384000011, 33.40488718700004],
    [60.829082479000135, 33.41628184100003],
    [60.83466353400007, 33.43625478100006],
    [60.832803182000134, 33.45346303400004],
    [60.82928918400012, 33.47012868200005],
    [60.832183065000095, 33.48449473100007],
    [60.84985640500008, 33.494364930000046],
    [60.89729537000005, 33.49702626500007],
    [60.91207482900006, 33.501522116000075],
    [60.91978829300007, 33.51257051900012],
    [60.92085982200007, 33.514105326000106],
    [60.911971476000076, 33.528445536000106],
    [60.8951249590001, 33.541132101000045],
    [60.879622030000064, 33.54870269800011],
    [60.84603234800005, 33.55578237000012],
    [60.807378377000134, 33.55815948600008],
    [60.73389449000007, 33.55485219400009],
    [60.65555301900008, 33.55989064500005],
    [60.574834432000046, 33.587795919000115],
    [60.51178918500011, 33.63838714600007],
    [60.48688114500004, 33.71138010700011],
    [60.494942668000135, 33.744117126000106],
    [60.52584517400004, 33.80214976000008],
    [60.52801558500005, 33.84144968700005],
    [60.499386841000046, 33.99425689800006],
    [60.48846068000012, 34.08092732000006],
    [60.48677779100012, 34.09427663200006],
    [60.49277225700007, 34.13902842200011],
    [60.520884237000075, 34.18613149],
    [60.552406861000065, 34.2200570680001],
    [60.58744348200008, 34.25026194300003],
    [60.634985799000106, 34.271216736000014],
    [60.65059208200006, 34.28535024100006],
    [60.64366744000006, 34.30664093000004],
    [60.714360799000076, 34.3101290890001],
    [60.8159566650001, 34.31527089500008],
    [60.890474080000104, 34.31891408300007],
    [60.879105266000124, 34.337646790000065],
    [60.804897908000044, 34.41748687800006],
    [60.78908492000005, 34.443480123000114],
    [60.77936975100005, 34.45508148200008],
    [60.76727746600005, 34.46415069600005],
    [60.74278283700011, 34.47345245400007],
    [60.73389449000007, 34.48042877200007],
    [60.725316203000034, 34.50427744600006],
    [60.718908325000086, 34.5111504110001],
    [60.71033003800005, 34.51512949700009],
    [60.69968469200006, 34.51639556900005],
    [60.714360799000076, 34.53742787700014],
    [60.739268840000136, 34.548021546000115],
    [60.79404585800012, 34.554119365000076],
    [60.818953898000075, 34.55990712500005],
    [60.83848759000011, 34.570914205000065],
    [60.88385949700012, 34.61370229100007],
    [60.88892378800011, 34.621660462000136],
    [60.89543501800006, 34.628326722000054],
    [60.90887089000012, 34.63468292200008],
    [60.922823527000105, 34.636543274000076],
    [60.93584598800004, 34.63566477500004],
    [60.94752486200014, 34.63799021400007],
    [60.95796350100005, 34.64941070600008],
    [60.961994263000065, 34.6737503060001],
    [60.958686971000134, 34.699588521000095],
    [60.95992720600009, 34.72320465100003],
    [60.97801395700009, 34.74061960900005],
    [61.009639933000074, 34.76098012300008],
    [61.02907027200007, 34.7897122200001],
    [61.034754680000106, 34.80624867800009],
    [61.06545048000004, 34.8147236130001],
    [61.073408651000136, 34.84769317700005],
    [61.07774947200011, 34.88303985600007],
    [61.07702600100009, 34.891721496000116],
    [61.072581828000125, 34.91032501300006],
    [61.07154829900014, 34.92055694600015],
    [61.07475223800009, 34.933114319000055],
    [61.08891158100005, 34.95192454100007],
    [61.092012166000075, 34.96148468000007],
    [61.09531945800006, 34.98101837200008],
    [61.109892212000034, 35.018535462000074],
    [61.115886678000095, 35.05987660800011],
    [61.12312137900011, 35.07419097900009],
    [61.1473059490001, 35.10209625200008],
    [61.13676395600004, 35.11119130500006],
    [61.135213664000105, 35.119407857000084],
    [61.137900838000064, 35.128296204000094],
    [61.1398645430001, 35.13966501900009],
    [61.13707401600004, 35.14390248700005],
    [61.10152063000004, 35.18322825200002],
    [61.096352987000046, 35.19320180200012],
    [61.10234745300011, 35.19769765300006],
    [61.112372681000124, 35.20203847200011],
    [61.112786093000125, 35.21165028900015],
    [61.1079285080001, 35.22126210500005],
    [61.10234745300011, 35.225602926000136],
    [61.10162398300008, 35.23531809500008],
    [61.102450806000036, 35.25666046200007],
    [61.10834191900011, 35.27795115200007],
    [61.12270796700011, 35.2876663210001],
    [61.14399865700011, 35.288079732000114],
    [61.167873169000075, 35.2913870240001],
    [61.1870968020001, 35.30037872300005],
    [61.19505497300008, 35.318103740000055],
    [61.19040409400009, 35.36957346600005],
    [61.19505497300008, 35.390089010000025],
    [61.20084273300006, 35.40114776600012],
    [61.221823364000045, 35.42424713200009],
    [61.22730106700004, 35.43447906500009],
    [61.23598270700012, 35.465846660000096],
    ...]]}}
In [42]:
d1[['countryOfCitizenship','personName']]
Out[42]:
countryOfCitizenship personName
0 France Bernard Arnault & family
1 United States Elon Musk
2 United States Jeff Bezos
3 United States Larry Ellison
4 United States Warren Buffett
... ... ...
2635 China Yu Rong
2636 United States Richard Yuengling, Jr.
2637 China Zhang Gongyun
2638 China Zhang Guiping & family
2639 Philippines Inigo Zobel

2640 rows × 2 columns

In [ ]: